home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / csnews.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  73 lines

  1. #
  2. # This script was written by John Lampe...j_lampe@bellsouth.net 
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11726);
  10.  script_bugtraq_id(4994);
  11.  script_version ("$Revision: 1.6 $");
  12.  script_cve_id("CAN-2002-0923");
  13.  
  14.  
  15.  name["english"] = "CSNews.cgi vulnerability";
  16.  name["francais"] = "CSNews.cgi vulnerability";
  17.  script_name(english:name["english"], francais:name["francais"]);
  18.  
  19.  desc["english"] = "
  20. The CSNews.cgi exists on this webserver. Some versions of this file 
  21. are vulnerable to remote exploit.
  22.  
  23. An attacker may make use of this file to gain access to
  24. confidential data or escalate their privileges on the Web
  25. server.
  26.  
  27. Solution : remove it from the cgi-bin or scripts directory.
  28. Risk factor : High";
  29.  
  30.  
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "Checks for the csnews.cgi file";
  34.  
  35.  script_summary(english:summary["english"]);
  36.  
  37.  script_category(ACT_GATHER_INFO);
  38.  
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2003 John Lampe",
  41.         francais:"Ce script est Copyright (C) 2003 John Lampe");
  42.  family["english"] = "CGI abuses";
  43.  family["francais"] = "Abus de CGI";
  44.  script_family(english:family["english"], francais:family["francais"]);
  45.  script_dependencie("find_service.nes", "no404.nasl");
  46.  script_require_ports("Services/www", 80);
  47.  exit(0);
  48. }
  49.  
  50. #
  51. # The script code starts here
  52. #
  53.  
  54. include("http_func.inc");
  55. include("http_keepalive.inc");
  56.  
  57. port = get_http_port(default:80);
  58.  
  59. if(!get_port_state(port))exit(0);
  60.  
  61. flag = 0;
  62. directory = "";
  63.  
  64. foreach dir (cgi_dirs()) {
  65.    if(is_cgi_installed_ka(item:string(dir, "/csNews.cgi"), port:port)) {
  66.       flag = 1;
  67.       directory = dir;
  68.       break;
  69.    } 
  70. }
  71.  
  72. if (flag) security_hole(port);
  73.